Crate webpki_roots

source ·
Expand description

A compiled-in copy of the root certificates trusted by Mozilla.

To use this library with rustls 0.22:

let root_store = rustls::RootCertStore {
  roots: webpki_roots::TLS_SERVER_ROOTS.iter().cloned().collect(),
};

This library is suitable for use in applications that can always be recompiled and instantly deployed. For applications that are deployed to end-users and cannot be recompiled, or which need certification before deployment, consider a library that loads certificates at runtime, like rustls-native-certs.

Constants§